home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000250_news@columbia.edu _Tue Feb 6 09:45:12 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id JAA22280
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 6 Feb 2001 09:45:11 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA00603
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 6 Feb 2001 09:45:10 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA09828
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 6 Feb 2001 09:38:40 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: gneiss@mailroom.com (Bob)
  13. Subject: kermit not closing properly?
  14. Date: Tue, 06 Feb 2001 14:36:48 -0000
  15. Organization: Posted via Supernews, http://www.supernews.com
  16. Message-ID: <904061545bdorengneiss@207.126.101.100>
  17. To: kermit.misc@columbia.edu
  18.  
  19. Good Morning:
  20. Using the lastest release on both VMS and Linux, the script below logs in to 
  21. Linux from VMS, transfers a file, encrypts it, then gets a file back.  All 
  22. appears normal up to the last line, "out  exit\13", at which point Kermit 
  23. appears to try to read _every_ line of the command file (according to my screen 
  24. display) instead of the "exit" command...eventually exit is recognized and 
  25. kermit seems to quit normally.  Up to now I had a session.log to read, but now 
  26. that is empty at job completion.
  27.  
  28. Am I missing a kermit command or command switch?
  29.  
  30. Thanks for any help,  Bob
  31.  
  32.  
  33. log session
  34. set host porky
  35. in 5 Password:
  36. out \13
  37. in 5 Login: 
  38. out aagaard\13
  39. in 5 Password: 
  40. out <password>\13
  41. ;
  42. in 5 [aagaard@porky aagaard]$
  43. out cd test\13
  44. in 3 [aagaard@porky test]$
  45. out rm *\13
  46. in 3 [aagaard@porky test]$
  47. send /binary nopstoporky.pgp
  48. in 30 [aagaard@porky test]$
  49. out pgp -z "secret passphrase" nopstoporky.pgp\13
  50. ;
  51. in 30 [aagaard@porky test]$
  52. set protocol kermit {kermit -O}        #start kermit server for "get" only
  53. get /text nopstoporky    
  54. out exit\13